Imported Upstream version 1.8.0
authorJochen Sprickerhof <git@jochen.sprickerhof.de>
Mon, 15 Aug 2016 13:56:43 +0000 (15:56 +0200)
committerJochen Sprickerhof <git@jochen.sprickerhof.de>
Mon, 15 Aug 2016 13:56:43 +0000 (15:56 +0200)
commitcff328462e82392bce32c3c549a259a22c105ae6
treef39ceee15156e5232d48ebb710cfa112ca6265a7
parent8ee0cd905c894d8294ada94bf0adeacd1ea55b84
Imported Upstream version 1.8.0
1052 files changed:
.travis.sh
.travis.yml
2d/CMakeLists.txt [new file with mode: 0644]
2d/include/pcl/2d/convolution.h [new file with mode: 0644]
2d/include/pcl/2d/edge.h [new file with mode: 0644]
2d/include/pcl/2d/impl/convolution.hpp [new file with mode: 0644]
2d/include/pcl/2d/impl/edge.hpp [new file with mode: 0644]
2d/include/pcl/2d/impl/kernel.hpp [new file with mode: 0644]
2d/include/pcl/2d/impl/keypoint.hpp [new file with mode: 0644]
2d/include/pcl/2d/impl/morphology.hpp [new file with mode: 0644]
2d/include/pcl/2d/kernel.h [new file with mode: 0644]
2d/include/pcl/2d/keypoint.h [new file with mode: 0644]
2d/include/pcl/2d/morphology.h [new file with mode: 0644]
2d/src/convolution_2d.cpp [new file with mode: 0644]
2d/src/examples.cpp [new file with mode: 0644]
AUTHORS.txt
CHANGES.md
CMakeLists.txt
PCLConfig.cmake.in
README.md
apps/3d_rec_framework/CMakeLists.txt [new file with mode: 0644]
apps/3d_rec_framework/include/pcl/apps/3d_rec_framework/feature_wrapper/global/crh_estimator.h [new file with mode: 0644]
apps/3d_rec_framework/include/pcl/apps/3d_rec_framework/feature_wrapper/global/cvfh_estimator.h [new file with mode: 0644]
apps/3d_rec_framework/include/pcl/apps/3d_rec_framework/feature_wrapper/global/esf_estimator.h [new file with mode: 0644]
apps/3d_rec_framework/include/pcl/apps/3d_rec_framework/feature_wrapper/global/global_estimator.h [new file with mode: 0644]
apps/3d_rec_framework/include/pcl/apps/3d_rec_framework/feature_wrapper/global/ourcvfh_estimator.h [new file with mode: 0644]
apps/3d_rec_framework/include/pcl/apps/3d_rec_framework/feature_wrapper/global/vfh_estimator.h [new file with mode: 0644]
apps/3d_rec_framework/include/pcl/apps/3d_rec_framework/feature_wrapper/local/colorshot_local_estimator.h [new file with mode: 0644]
apps/3d_rec_framework/include/pcl/apps/3d_rec_framework/feature_wrapper/local/fpfh_local_estimator.h [new file with mode: 0644]
apps/3d_rec_framework/include/pcl/apps/3d_rec_framework/feature_wrapper/local/fpfh_local_estimator_omp.h [new file with mode: 0644]
apps/3d_rec_framework/include/pcl/apps/3d_rec_framework/feature_wrapper/local/local_estimator.h [new file with mode: 0644]
apps/3d_rec_framework/include/pcl/apps/3d_rec_framework/feature_wrapper/local/shot_local_estimator.h [new file with mode: 0644]
apps/3d_rec_framework/include/pcl/apps/3d_rec_framework/feature_wrapper/local/shot_local_estimator_omp.h [new file with mode: 0644]
apps/3d_rec_framework/include/pcl/apps/3d_rec_framework/feature_wrapper/normal_estimator.h [new file with mode: 0644]
apps/3d_rec_framework/include/pcl/apps/3d_rec_framework/pc_source/mesh_source.h [new file with mode: 0644]
apps/3d_rec_framework/include/pcl/apps/3d_rec_framework/pc_source/registered_views_source.h [new file with mode: 0644]
apps/3d_rec_framework/include/pcl/apps/3d_rec_framework/pc_source/source.h [new file with mode: 0644]
apps/3d_rec_framework/include/pcl/apps/3d_rec_framework/pipeline/global_nn_classifier.h [new file with mode: 0644]
apps/3d_rec_framework/include/pcl/apps/3d_rec_framework/pipeline/global_nn_recognizer_crh.h [new file with mode: 0644]
apps/3d_rec_framework/include/pcl/apps/3d_rec_framework/pipeline/global_nn_recognizer_cvfh.h [new file with mode: 0644]
apps/3d_rec_framework/include/pcl/apps/3d_rec_framework/pipeline/impl/global_nn_classifier.hpp [new file with mode: 0644]
apps/3d_rec_framework/include/pcl/apps/3d_rec_framework/pipeline/impl/global_nn_recognizer_crh.hpp [new file with mode: 0644]
apps/3d_rec_framework/include/pcl/apps/3d_rec_framework/pipeline/impl/global_nn_recognizer_cvfh.hpp [new file with mode: 0644]
apps/3d_rec_framework/include/pcl/apps/3d_rec_framework/pipeline/impl/local_recognizer.hpp [new file with mode: 0644]
apps/3d_rec_framework/include/pcl/apps/3d_rec_framework/pipeline/local_recognizer.h [new file with mode: 0644]
apps/3d_rec_framework/include/pcl/apps/3d_rec_framework/tools/openni_frame_source.h [new file with mode: 0644]
apps/3d_rec_framework/include/pcl/apps/3d_rec_framework/utils/metrics.h [new file with mode: 0644]
apps/3d_rec_framework/include/pcl/apps/3d_rec_framework/utils/persistence_utils.h [new file with mode: 0644]
apps/3d_rec_framework/include/pcl/apps/3d_rec_framework/utils/vtk_model_sampling.h [new file with mode: 0644]
apps/3d_rec_framework/src/pipeline/global_nn_classifier.cpp [new file with mode: 0644]
apps/3d_rec_framework/src/pipeline/global_nn_recognizer_crh.cpp [new file with mode: 0644]
apps/3d_rec_framework/src/pipeline/global_nn_recognizer_cvfh.cpp [new file with mode: 0644]
apps/3d_rec_framework/src/pipeline/local_recognizer.cpp [new file with mode: 0644]
apps/3d_rec_framework/src/tools/openni_frame_source.cpp [new file with mode: 0644]
apps/3d_rec_framework/tools/CMakeLists.txt [new file with mode: 0644]
apps/3d_rec_framework/tools/apps/CMakeLists.txt [new file with mode: 0644]
apps/3d_rec_framework/tools/apps/src/global_classification.cpp [new file with mode: 0644]
apps/3d_rec_framework/tools/apps/src/local_recognition_mian_dataset.cpp [new file with mode: 0644]
apps/CMakeLists.txt
apps/cloud_composer/include/pcl/apps/cloud_composer/items/cloud_item.h
apps/cloud_composer/include/pcl/apps/cloud_composer/qt.h
apps/cloud_composer/include/pcl/apps/cloud_composer/tool_interface/abstract_tool.h
apps/cloud_composer/include/pcl/apps/cloud_composer/tool_interface/tool_factory.h
apps/cloud_composer/include/pcl/apps/cloud_composer/toolbox_model.h
apps/cloud_composer/include/pcl/apps/cloud_composer/tools/euclidean_clustering.h
apps/cloud_composer/include/pcl/apps/cloud_composer/tools/fpfh_estimation.h
apps/cloud_composer/include/pcl/apps/cloud_composer/tools/impl/supervoxels.hpp
apps/cloud_composer/include/pcl/apps/cloud_composer/tools/normal_estimation.h
apps/cloud_composer/include/pcl/apps/cloud_composer/tools/organized_segmentation.h
apps/cloud_composer/include/pcl/apps/cloud_composer/tools/sanitize_cloud.h
apps/cloud_composer/include/pcl/apps/cloud_composer/tools/statistical_outlier_removal.h
apps/cloud_composer/include/pcl/apps/cloud_composer/tools/supervoxels.h
apps/cloud_composer/include/pcl/apps/cloud_composer/tools/voxel_grid_downsample.h
apps/cloud_composer/src/cloud_view.cpp
apps/cloud_composer/src/cloud_viewer.cpp
apps/cloud_composer/src/items/cloud_item.cpp
apps/cloud_composer/src/point_selectors/rectangular_frustum_selector.cpp
apps/cloud_composer/tools/euclidean_clustering.cpp
apps/cloud_composer/tools/fpfh_estimation.cpp
apps/cloud_composer/tools/normal_estimation.cpp
apps/cloud_composer/tools/organized_segmentation.cpp
apps/cloud_composer/tools/sanitize_cloud.cpp
apps/cloud_composer/tools/statistical_outlier_removal.cpp
apps/cloud_composer/tools/supervoxels.cpp
apps/cloud_composer/tools/voxel_grid_downsample.cpp
apps/in_hand_scanner/CMakeLists.txt
apps/in_hand_scanner/src/icp.cpp
apps/in_hand_scanner/src/visibility_confidence.cpp
apps/include/pcl/apps/impl/dominant_plane_segmentation.hpp
apps/include/pcl/apps/manual_registration.h
apps/modeler/CMakeLists.txt
apps/modeler/src/scene_tree.cpp
apps/optronic_viewer/CMakeLists.txt
apps/point_cloud_editor/include/pcl/apps/point_cloud_editor/cloud.h
apps/point_cloud_editor/include/pcl/apps/point_cloud_editor/localTypes.h
apps/point_cloud_editor/include/pcl/apps/point_cloud_editor/mainWindow.h
apps/point_cloud_editor/src/cloud.cpp
apps/point_cloud_editor/src/select2DTool.cpp
apps/src/face_detection/face_trainer.cpp [new file with mode: 0644]
apps/src/face_detection/filesystem_face_detection.cpp [new file with mode: 0644]
apps/src/face_detection/openni_face_detection.cpp [new file with mode: 0644]
apps/src/face_detection/openni_frame_source.cpp [new file with mode: 0644]
apps/src/ni_agast.cpp
apps/src/ni_brisk.cpp [new file with mode: 0644]
apps/src/openni_change_viewer.cpp
apps/src/openni_organized_edge_detection.cpp [new file with mode: 0644]
apps/src/openni_tracking.cpp
apps/src/openni_uniform_sampling.cpp
apps/src/pcd_organized_edge_detection.cpp [new file with mode: 0644]
apps/src/render_views_tesselated_sphere.cpp
apps/src/stereo_ground_segmentation.cpp [new file with mode: 0755]
cmake/CudaComputeTargetFlags.cmake [new file with mode: 0644]
cmake/Modules/FindDSSDK.cmake [new file with mode: 0644]
cmake/Modules/FindEnsenso.cmake [new file with mode: 0644]
cmake/Modules/FindFZAPI.cmake
cmake/Modules/FindGLEW.cmake
cmake/Modules/FindGtest.cmake
cmake/Modules/FindOpenNI.cmake
cmake/Modules/FindOpenNI2.cmake
cmake/Modules/FindPXCAPI.cmake [deleted file]
cmake/Modules/FindQVTK.cmake
cmake/Modules/FindRSSDK.cmake [new file with mode: 0644]
cmake/Modules/FinddavidSDK.cmake [new file with mode: 0644]
cmake/cpack_options.cmake.in
cmake/pcl_all_in_one_installer.cmake
cmake/pcl_cpack.cmake
cmake/pcl_find_boost.cmake
cmake/pcl_find_cuda.cmake [new file with mode: 0644]
cmake/pcl_find_qt5.cmake
cmake/pcl_find_sse.cmake
cmake/pcl_pclconfig.cmake
cmake/pcl_targets.cmake
common/CMakeLists.txt
common/include/pcl/PCLHeader.h
common/include/pcl/TextureMesh.h
common/include/pcl/common/boost.h
common/include/pcl/common/colors.h [new file with mode: 0644]
common/include/pcl/common/common.h
common/include/pcl/common/eigen.h
common/include/pcl/common/feature_histogram.h [new file with mode: 0644]
common/include/pcl/common/geometry.h
common/include/pcl/common/impl/common.hpp
common/include/pcl/common/impl/intensity.hpp
common/include/pcl/common/impl/io.hpp
common/include/pcl/common/impl/polynomial_calculations.hpp
common/include/pcl/common/impl/transforms.hpp
common/include/pcl/common/pca.h
common/include/pcl/common/point_tests.h
common/include/pcl/common/polynomial_calculations.h
common/include/pcl/common/time.h
common/include/pcl/common/time_trigger.h
common/include/pcl/common/transforms.h
common/include/pcl/console/time.h
common/include/pcl/conversions.h
common/include/pcl/exceptions.h
common/include/pcl/for_each_type.h
common/include/pcl/impl/pcl_base.hpp
common/include/pcl/impl/point_types.hpp
common/include/pcl/point_cloud.h
common/include/pcl/point_representation.h
common/include/pcl/point_types.h
common/include/pcl/point_types_conversion.h
common/include/pcl/range_image/bearing_angle_image.h
common/include/pcl/register_point_struct.h
common/src/colors.cpp [new file with mode: 0644]
common/src/feature_histogram.cpp [new file with mode: 0644]
common/src/pcl_base.cpp
common/src/point_types.cpp
common/src/time_trigger.cpp
cuda/CMakeLists.txt [new file with mode: 0644]
cuda/apps/CMakeLists.txt [new file with mode: 0644]
cuda/apps/src/kinect_cloud.cpp [new file with mode: 0644]
cuda/apps/src/kinect_debayering.cpp [new file with mode: 0644]
cuda/apps/src/kinect_dediscretize.cpp [new file with mode: 0644]
cuda/apps/src/kinect_mapping.cpp [new file with mode: 0644]
cuda/apps/src/kinect_normals_cuda.cpp [new file with mode: 0644]
cuda/apps/src/kinect_planes_cuda.cpp [new file with mode: 0644]
cuda/apps/src/kinect_ransac.cpp [new file with mode: 0644]
cuda/apps/src/kinect_segmentation_cuda.cpp [new file with mode: 0644]
cuda/apps/src/kinect_segmentation_planes_cuda.cpp [new file with mode: 0644]
cuda/apps/src/kinect_tool_standalone.cpp [new file with mode: 0644]
cuda/apps/src/kinect_viewer_cuda.cpp [new file with mode: 0644]
cuda/common/CMakeLists.txt [new file with mode: 0644]
cuda/common/include/pcl/cuda/common/eigen.h [new file with mode: 0644]
cuda/common/include/pcl/cuda/common/point_type_rgb.h [new file with mode: 0644]
cuda/common/include/pcl/cuda/cutil.h [new file with mode: 0644]
cuda/common/include/pcl/cuda/cutil_inline.h [new file with mode: 0644]
cuda/common/include/pcl/cuda/cutil_inline_bankchecker.h [new file with mode: 0644]
cuda/common/include/pcl/cuda/cutil_inline_drvapi.h [new file with mode: 0644]
cuda/common/include/pcl/cuda/cutil_inline_runtime.h [new file with mode: 0644]
cuda/common/include/pcl/cuda/cutil_math.h [new file with mode: 0644]
cuda/common/include/pcl/cuda/pcl_cuda_base.h [new file with mode: 0644]
cuda/common/include/pcl/cuda/point_cloud.h [new file with mode: 0644]
cuda/common/include/pcl/cuda/point_types.h [new file with mode: 0644]
cuda/common/include/pcl/cuda/thrust.h [new file with mode: 0644]
cuda/common/include/pcl/cuda/time_cpu.h [new file with mode: 0644]
cuda/common/include/pcl/cuda/time_gpu.h [new file with mode: 0644]
cuda/features/CMakeLists.txt [new file with mode: 0644]
cuda/features/include/pcl/cuda/features/normal_3d.h [new file with mode: 0644]
cuda/features/include/pcl/cuda/features/normal_3d_kernels.h [new file with mode: 0644]
cuda/features/src/normal_3d.cu [new file with mode: 0644]
cuda/filters/include/pcl/cuda/filters/filter.h [new file with mode: 0644]
cuda/filters/include/pcl/cuda/filters/passthrough.h [new file with mode: 0644]
cuda/filters/include/pcl/cuda/filters/voxel_grid.h [new file with mode: 0644]
cuda/io/CMakeLists.txt [new file with mode: 0644]
cuda/io/include/pcl/cuda/io/cloud_from_pcl.h [new file with mode: 0644]
cuda/io/include/pcl/cuda/io/cloud_to_pcl.h [new file with mode: 0644]
cuda/io/include/pcl/cuda/io/debayering.h [new file with mode: 0644]
cuda/io/include/pcl/cuda/io/disparity_to_cloud.h [new file with mode: 0644]
cuda/io/include/pcl/cuda/io/extract_indices.h [new file with mode: 0644]
cuda/io/include/pcl/cuda/io/host_device.h [new file with mode: 0644]
cuda/io/include/pcl/cuda/io/kinect_smoothing.h [new file with mode: 0644]
cuda/io/include/pcl/cuda/io/predicate.h [new file with mode: 0644]
cuda/io/src/cloud_from_pcl.cu [new file with mode: 0644]
cuda/io/src/cloud_to_pcl.cpp [new file with mode: 0644]
cuda/io/src/debayering.cu [new file with mode: 0644]
cuda/io/src/disparity_to_cloud.cu [new file with mode: 0644]
cuda/io/src/extract_indices.cu [new file with mode: 0644]
cuda/io/src/host_device.cu [new file with mode: 0644]
cuda/io/src/kinect_smoothing.cu [new file with mode: 0644]
cuda/nn/organized_neighbor_search.h [new file with mode: 0644]
cuda/nn/organized_neighbor_search.hpp [new file with mode: 0644]
cuda/sample_consensus/CMakeLists.txt [new file with mode: 0644]
cuda/sample_consensus/include/pcl/cuda/sample_consensus/msac.h [new file with mode: 0644]
cuda/sample_consensus/include/pcl/cuda/sample_consensus/multi_ransac.h [new file with mode: 0644]
cuda/sample_consensus/include/pcl/cuda/sample_consensus/ransac.h [new file with mode: 0644]
cuda/sample_consensus/include/pcl/cuda/sample_consensus/sac.h [new file with mode: 0644]
cuda/sample_consensus/include/pcl/cuda/sample_consensus/sac_model.h [new file with mode: 0644]
cuda/sample_consensus/include/pcl/cuda/sample_consensus/sac_model_1point_plane.h [new file with mode: 0644]
cuda/sample_consensus/include/pcl/cuda/sample_consensus/sac_model_plane.h [new file with mode: 0644]
cuda/sample_consensus/src/msac.cpp [new file with mode: 0644]
cuda/sample_consensus/src/multi_ransac.cu [new file with mode: 0644]
cuda/sample_consensus/src/ransac.cu [new file with mode: 0644]
cuda/sample_consensus/src/sac_model.cu [new file with mode: 0644]
cuda/sample_consensus/src/sac_model_1point_plane.cu [new file with mode: 0644]
cuda/sample_consensus/src/sac_model_plane.cu [new file with mode: 0644]
cuda/segmentation/CMakeLists.txt [new file with mode: 0644]
cuda/segmentation/include/pcl/cuda/segmentation/connected_components.h [new file with mode: 0644]
cuda/segmentation/include/pcl/cuda/segmentation/mssegmentation.h [new file with mode: 0644]
cuda/segmentation/src/connected_components.cu [new file with mode: 0644]
cuda/segmentation/src/mssegmentation.cpp [new file with mode: 0644]
doc/advanced/content/exceptions_guide.rst
doc/advanced/content/files/pcl-c-style.el [new file with mode: 0644]
doc/advanced/content/pcl_style_guide.rst
doc/doxygen/doxyfile.in
doc/tutorials/content/compiling_pcl_posix.rst [new file with mode: 0644]
doc/tutorials/content/davidsdk.rst [new file with mode: 0644]
doc/tutorials/content/depth_sense_grabber.rst [new file with mode: 0644]
doc/tutorials/content/ensenso_cameras.rst [new file with mode: 0644]
doc/tutorials/content/global_hypothesis_verification.rst [new file with mode: 0644]
doc/tutorials/content/gpu_install.rst [new file with mode: 0644]
doc/tutorials/content/gpu_people.rst [new file with mode: 0644]
doc/tutorials/content/ground_based_rgbd_people_detection.rst
doc/tutorials/content/hdl_grabber.rst
doc/tutorials/content/images/creative_camera.jpg [new file with mode: 0644]
doc/tutorials/content/images/davidsdk/david.png [new file with mode: 0644]
doc/tutorials/content/images/davidsdk/davidsdk_viewer.jpg [new file with mode: 0644]
doc/tutorials/content/images/ensenso/ensenso_viewer.jpg [new file with mode: 0644]
doc/tutorials/content/images/ensenso/ids.png [new file with mode: 0644]
doc/tutorials/content/images/global_hypothesis_verification/multiple.png [new file with mode: 0644]
doc/tutorials/content/images/global_hypothesis_verification/original.png [new file with mode: 0644]
doc/tutorials/content/images/global_hypothesis_verification/single.png [new file with mode: 0644]
doc/tutorials/content/images/posix_building_pcl/boost_logo.png [new file with mode: 0644]
doc/tutorials/content/images/posix_building_pcl/cuda_logo.png [new file with mode: 0644]
doc/tutorials/content/images/posix_building_pcl/eigen_logo.png [new file with mode: 0644]
doc/tutorials/content/images/posix_building_pcl/flann_logo.png [new file with mode: 0644]
doc/tutorials/content/images/posix_building_pcl/openni_logo.png [new file with mode: 0644]
doc/tutorials/content/images/posix_building_pcl/qhull_logo.png [new file with mode: 0644]
doc/tutorials/content/images/posix_building_pcl/vtk_logo.png [new file with mode: 0644]
doc/tutorials/content/images/qt_colorize_cloud/colorize_cloud.gif [new file with mode: 0644]
doc/tutorials/content/images/qt_colorize_cloud/ui.png [new file with mode: 0644]
doc/tutorials/content/index.rst
doc/tutorials/content/installing_homebrew.rst
doc/tutorials/content/pcl_visualizer.rst
doc/tutorials/content/qt_colorize_cloud.rst [new file with mode: 0644]
doc/tutorials/content/qt_visualizer.rst
doc/tutorials/content/remove_outliers.rst
doc/tutorials/content/sources/alignment_prerejective/alignment_prerejective.cpp
doc/tutorials/content/sources/cluster_extraction/cluster_extraction.cpp
doc/tutorials/content/sources/correspondence_grouping/correspondence_grouping.cpp
doc/tutorials/content/sources/davidsdk/CMakeLists.txt [new file with mode: 0644]
doc/tutorials/content/sources/davidsdk/davidsdk_images_viewer.cpp [new file with mode: 0644]
doc/tutorials/content/sources/don_segmentation/don_segmentation.cpp
doc/tutorials/content/sources/ensenso_cameras/CMakeLists.txt [new file with mode: 0644]
doc/tutorials/content/sources/ensenso_cameras/ensenso_cloud_images_viewer.cpp [new file with mode: 0644]
doc/tutorials/content/sources/global_hypothesis_verification/CMakeLists.txt [new file with mode: 0644]
doc/tutorials/content/sources/global_hypothesis_verification/global_hypothesis_verification.cpp [new file with mode: 0644]
doc/tutorials/content/sources/gpu/people_detect/CMakeLists.txt [new file with mode: 0644]
doc/tutorials/content/sources/gpu/people_detect/CMakeLists.txt.backup [new file with mode: 0644]
doc/tutorials/content/sources/gpu/people_detect/src/people_detect.cpp [new file with mode: 0644]
doc/tutorials/content/sources/matrix_transform/matrix_transform.cpp
doc/tutorials/content/sources/qt_colorize_cloud/CMakeLists.txt [new file with mode: 0644]
doc/tutorials/content/sources/qt_colorize_cloud/main.cpp [new file with mode: 0644]
doc/tutorials/content/sources/qt_colorize_cloud/pcl_visualizer.pro [new file with mode: 0644]
doc/tutorials/content/sources/qt_colorize_cloud/pclviewer.cpp [new file with mode: 0644]
doc/tutorials/content/sources/qt_colorize_cloud/pclviewer.h [new file with mode: 0644]
doc/tutorials/content/sources/qt_colorize_cloud/pclviewer.ui [new file with mode: 0644]
doc/tutorials/content/sources/qt_visualizer/pcl_visualizer.pro.user [deleted file]
doc/tutorials/content/sources/registration_api/example1.cpp
doc/tutorials/content/sources/registration_api/example2.cpp
doc/tutorials/content/sources/remove_outliers/remove_outliers.cpp
doc/tutorials/content/sources/supervoxel_clustering/CMakeLists.txt
doc/tutorials/content/sources/supervoxel_clustering/supervoxel_clustering.cpp
doc/tutorials/content/sources/vfh_recognition/build_tree.cpp
doc/tutorials/content/sources/vfh_recognition/nearest_neighbors.cpp
doc/tutorials/content/supervoxel_clustering.rst
doc/tutorials/content/tracking.rst
doc/tutorials/content/using_pcl_with_eclipse.rst
doc/tutorials/content/writing_new_classes.rst
examples/CMakeLists.txt
examples/features/example_difference_of_normals.cpp
examples/segmentation/CMakeLists.txt
examples/segmentation/example_cpc_segmentation.cpp [new file with mode: 0644]
examples/segmentation/example_extract_clusters_normals.cpp
examples/segmentation/example_lccp_segmentation.cpp [new file with mode: 0644]
examples/segmentation/example_supervoxels.cpp
examples/stereo/CMakeLists.txt [new file with mode: 0644]
examples/stereo/example_stereo_baseline.cpp [new file with mode: 0644]
features/CMakeLists.txt
features/include/pcl/features/brisk_2d.h [new file with mode: 0644]
features/include/pcl/features/cvfh.h
features/include/pcl/features/from_meshes.h [new file with mode: 0644]
features/include/pcl/features/grsd.h [new file with mode: 0644]
features/include/pcl/features/impl/brisk_2d.hpp [new file with mode: 0644]
features/include/pcl/features/impl/crh.hpp
features/include/pcl/features/impl/grsd.hpp [new file with mode: 0644]
features/include/pcl/features/impl/moment_of_inertia_estimation.hpp
features/include/pcl/features/impl/normal_3d.hpp
features/include/pcl/features/impl/organized_edge_detection.hpp [new file with mode: 0644]
features/include/pcl/features/impl/pfh.hpp
features/include/pcl/features/impl/pfhrgb.hpp
features/include/pcl/features/impl/rops_estimation.hpp
features/include/pcl/features/impl/rsd.hpp
features/include/pcl/features/impl/usc.hpp
features/include/pcl/features/normal_3d.h
features/include/pcl/features/organized_edge_detection.h [new file with mode: 0644]
features/include/pcl/features/our_cvfh.h
features/include/pcl/features/pfh.h
features/include/pcl/features/principal_curvatures.h
features/include/pcl/features/rsd.h
features/include/pcl/features/usc.h
features/src/brisk_2d.cpp [new file with mode: 0644]
features/src/grsd.cpp [new file with mode: 0644]
features/src/narf.cpp
features/src/organized_edge_detection.cpp [new file with mode: 0644]
features/src/usc.cpp
filters/CMakeLists.txt
filters/include/pcl/filters/box_clipper3D.h
filters/include/pcl/filters/covariance_sampling.h
filters/include/pcl/filters/fast_bilateral.h
filters/include/pcl/filters/filter.h
filters/include/pcl/filters/impl/bilateral.hpp
filters/include/pcl/filters/impl/convolution_3d.hpp
filters/include/pcl/filters/impl/crop_box.hpp
filters/include/pcl/filters/impl/fast_bilateral.hpp
filters/include/pcl/filters/impl/fast_bilateral_omp.hpp
filters/include/pcl/filters/impl/radius_outlier_removal.hpp
filters/include/pcl/filters/impl/uniform_sampling.hpp [new file with mode: 0644]
filters/include/pcl/filters/impl/voxel_grid.hpp
filters/include/pcl/filters/impl/voxel_grid_covariance.hpp
filters/include/pcl/filters/impl/voxel_grid_occlusion_estimation.hpp
filters/include/pcl/filters/model_outlier_removal.h
filters/include/pcl/filters/uniform_sampling.h [new file with mode: 0644]
filters/include/pcl/filters/voxel_grid.h
filters/include/pcl/filters/voxel_grid_label.h
filters/include/pcl/filters/voxel_grid_occlusion_estimation.h
filters/src/crop_box.cpp
filters/src/extract_indices.cpp
filters/src/filter.cpp
filters/src/passthrough.cpp
filters/src/uniform_sampling.cpp [new file with mode: 0644]
filters/src/voxel_grid.cpp
filters/src/voxel_grid_label.cpp
geometry/include/pcl/geometry/impl/polygon_operations.hpp
geometry/include/pcl/geometry/mesh_base.h
gpu/CMakeLists.txt [new file with mode: 0644]
gpu/containers/CMakeLists.txt [new file with mode: 0644]
gpu/containers/include/pcl/gpu/containers/device_array.h [new file with mode: 0644]
gpu/containers/include/pcl/gpu/containers/device_memory.h [new file with mode: 0644]
gpu/containers/include/pcl/gpu/containers/impl/device_array.hpp [new file with mode: 0644]
gpu/containers/include/pcl/gpu/containers/impl/device_memory.hpp [new file with mode: 0644]
gpu/containers/include/pcl/gpu/containers/initialization.h [new file with mode: 0644]
gpu/containers/include/pcl/gpu/containers/kernel_containers.h [new file with mode: 0644]
gpu/containers/src/device_memory.cpp [new file with mode: 0644]
gpu/containers/src/error.cpp [new file with mode: 0644]
gpu/containers/src/initialization.cpp [new file with mode: 0644]
gpu/examples/octree/src/octree_search.cpp [new file with mode: 0644]
gpu/examples/segmentation/src/seg.cpp [new file with mode: 0644]
gpu/features/CMakeLists.txt [new file with mode: 0644]
gpu/features/include/pcl/gpu/features/device/eigen.hpp [new file with mode: 0644]
gpu/features/include/pcl/gpu/features/device/pair_features.hpp [new file with mode: 0644]
gpu/features/include/pcl/gpu/features/device/rodrigues.hpp [new file with mode: 0644]
gpu/features/include/pcl/gpu/features/features.hpp [new file with mode: 0644]
gpu/features/src/centroid.cu [new file with mode: 0644]
gpu/features/src/features.cpp [new file with mode: 0644]
gpu/features/src/fpfh.cu [new file with mode: 0644]
gpu/features/src/internal.hpp [new file with mode: 0644]
gpu/features/src/normal_3d.cu [new file with mode: 0644]
gpu/features/src/pfh.cu [new file with mode: 0644]
gpu/features/src/ppf.cu [new file with mode: 0644]
gpu/features/src/principal_curvatures.cu [new file with mode: 0644]
gpu/features/src/spinimages.cu [new file with mode: 0644]
gpu/features/src/uniq_inds.cu [new file with mode: 0644]
gpu/features/src/utils/vector_operations.hpp [new file with mode: 0644]
gpu/features/src/vfh.cu [new file with mode: 0644]
gpu/features/test/CMakeLists.txt [new file with mode: 0644]
gpu/features/test/data_source.hpp [new file with mode: 0644]
gpu/features/test/test_fpfh.cpp [new file with mode: 0644]
gpu/features/test/test_normals.cpp [new file with mode: 0644]
gpu/features/test/test_pfh.cpp [new file with mode: 0644]
gpu/features/test/test_ppf.cpp [new file with mode: 0644]
gpu/features/test/test_principal_curvatures.cpp [new file with mode: 0644]
gpu/features/test/test_spinimages.cpp [new file with mode: 0644]
gpu/features/test/test_vfh.cpp [new file with mode: 0644]
gpu/kinfu/CMakeLists.txt [new file with mode: 0644]
gpu/kinfu/include/pcl/gpu/kinfu/color_volume.h [new file with mode: 0644]
gpu/kinfu/include/pcl/gpu/kinfu/kinfu.h [new file with mode: 0644]
gpu/kinfu/include/pcl/gpu/kinfu/marching_cubes.h [new file with mode: 0644]
gpu/kinfu/include/pcl/gpu/kinfu/pixel_rgb.h [new file with mode: 0644]
gpu/kinfu/include/pcl/gpu/kinfu/raycaster.h [new file with mode: 0644]
gpu/kinfu/include/pcl/gpu/kinfu/tsdf_volume.h [new file with mode: 0644]
gpu/kinfu/src/color_volume.cpp [new file with mode: 0644]
gpu/kinfu/src/cuda/bilateral_pyrdown.cu [new file with mode: 0644]
gpu/kinfu/src/cuda/colors.cu [new file with mode: 0644]
gpu/kinfu/src/cuda/coresp.cu [new file with mode: 0644]
gpu/kinfu/src/cuda/device.hpp [new file with mode: 0644]
gpu/kinfu/src/cuda/estimate_combined.cu [new file with mode: 0644]
gpu/kinfu/src/cuda/estimate_tranform.cu [new file with mode: 0644]
gpu/kinfu/src/cuda/extract.cu [new file with mode: 0644]
gpu/kinfu/src/cuda/image_generator.cu [new file with mode: 0644]
gpu/kinfu/src/cuda/maps.cu [new file with mode: 0644]
gpu/kinfu/src/cuda/marching_cubes.cu [new file with mode: 0644]
gpu/kinfu/src/cuda/normals_eigen.cu [new file with mode: 0644]
gpu/kinfu/src/cuda/ray_caster.cu [new file with mode: 0644]
gpu/kinfu/src/cuda/tsdf_volume.cu [new file with mode: 0644]
gpu/kinfu/src/cuda/utils.hpp [new file with mode: 0644]
gpu/kinfu/src/internal.h [new file with mode: 0644]
gpu/kinfu/src/kinfu.cpp [new file with mode: 0644]
gpu/kinfu/src/marching_cubes.cpp [new file with mode: 0644]
gpu/kinfu/src/raycaster.cpp [new file with mode: 0644]
gpu/kinfu/src/safe_call.hpp [new file with mode: 0644]
gpu/kinfu/src/tsdf_volume.cpp [new file with mode: 0644]
gpu/kinfu/test/CMakeLists.txt [new file with mode: 0644]
gpu/kinfu/tools/CMakeLists.txt [new file with mode: 0644]
gpu/kinfu/tools/camera_pose.h [new file with mode: 0644]
gpu/kinfu/tools/capture.cpp [new file with mode: 0644]
gpu/kinfu/tools/evaluation.cpp [new file with mode: 0644]
gpu/kinfu/tools/evaluation.h [new file with mode: 0644]
gpu/kinfu/tools/kinfu_app.cpp [new file with mode: 0644]
gpu/kinfu/tools/kinfu_app_sim.cpp [new file with mode: 0644]
gpu/kinfu/tools/openni_capture.h [new file with mode: 0644]
gpu/kinfu/tools/plot_camera_poses.m [new file with mode: 0644]
gpu/kinfu/tools/record_tsdfvolume.cpp [new file with mode: 0644]
gpu/kinfu/tools/tsdf_volume.h [new file with mode: 0644]
gpu/kinfu/tools/tsdf_volume.hpp [new file with mode: 0644]
gpu/kinfu_large_scale/CMakeLists.txt [new file with mode: 0644]
gpu/kinfu_large_scale/include/pcl/gpu/kinfu_large_scale/color_volume.h [new file with mode: 0644]
gpu/kinfu_large_scale/include/pcl/gpu/kinfu_large_scale/cyclical_buffer.h [new file with mode: 0644]
gpu/kinfu_large_scale/include/pcl/gpu/kinfu_large_scale/device.h [new file with mode: 0644]
gpu/kinfu_large_scale/include/pcl/gpu/kinfu_large_scale/float3_operations.h [new file with mode: 0644]
gpu/kinfu_large_scale/include/pcl/gpu/kinfu_large_scale/impl/standalone_marching_cubes.hpp [new file with mode: 0644]
gpu/kinfu_large_scale/include/pcl/gpu/kinfu_large_scale/impl/world_model.hpp [new file with mode: 0644]
gpu/kinfu_large_scale/include/pcl/gpu/kinfu_large_scale/kinfu.h [new file with mode: 0644]
gpu/kinfu_large_scale/include/pcl/gpu/kinfu_large_scale/marching_cubes.h [new file with mode: 0644]
gpu/kinfu_large_scale/include/pcl/gpu/kinfu_large_scale/pixel_rgb.h [new file with mode: 0644]
gpu/kinfu_large_scale/include/pcl/gpu/kinfu_large_scale/point_intensity.h [new file with mode: 0644]
gpu/kinfu_large_scale/include/pcl/gpu/kinfu_large_scale/raycaster.h [new file with mode: 0644]
gpu/kinfu_large_scale/include/pcl/gpu/kinfu_large_scale/screenshot_manager.h [new file with mode: 0644]
gpu/kinfu_large_scale/include/pcl/gpu/kinfu_large_scale/standalone_marching_cubes.h [new file with mode: 0644]
gpu/kinfu_large_scale/include/pcl/gpu/kinfu_large_scale/tsdf_buffer.h [new file with mode: 0644]
gpu/kinfu_large_scale/include/pcl/gpu/kinfu_large_scale/tsdf_volume.h [new file with mode: 0644]
gpu/kinfu_large_scale/include/pcl/gpu/kinfu_large_scale/world_model.h [new file with mode: 0644]
gpu/kinfu_large_scale/src/color_volume.cpp [new file with mode: 0644]
gpu/kinfu_large_scale/src/cuda/bilateral_pyrdown.cu [new file with mode: 0644]
gpu/kinfu_large_scale/src/cuda/colors.cu [new file with mode: 0644]
gpu/kinfu_large_scale/src/cuda/coresp.cu [new file with mode: 0644]
gpu/kinfu_large_scale/src/cuda/device.hpp [new file with mode: 0644]
gpu/kinfu_large_scale/src/cuda/estimate_combined.cu [new file with mode: 0644]
gpu/kinfu_large_scale/src/cuda/estimate_tranform.cu [new file with mode: 0644]
gpu/kinfu_large_scale/src/cuda/extract.cu [new file with mode: 0644]
gpu/kinfu_large_scale/src/cuda/image_generator.cu [new file with mode: 0644]
gpu/kinfu_large_scale/src/cuda/maps.cu [new file with mode: 0644]
gpu/kinfu_large_scale/src/cuda/marching_cubes.cu [new file with mode: 0644]
gpu/kinfu_large_scale/src/cuda/normals_eigen.cu [new file with mode: 0644]
gpu/kinfu_large_scale/src/cuda/pointer_shift.cu [new file with mode: 0644]
gpu/kinfu_large_scale/src/cuda/push.cu [new file with mode: 0644]
gpu/kinfu_large_scale/src/cuda/ray_caster.cu [new file with mode: 0644]
gpu/kinfu_large_scale/src/cuda/tsdf_volume.cu [new file with mode: 0644]
gpu/kinfu_large_scale/src/cuda/utils.hpp [new file with mode: 0644]
gpu/kinfu_large_scale/src/cyclical_buffer.cpp [new file with mode: 0644]
gpu/kinfu_large_scale/src/estimate_combined.h [new file with mode: 0644]
gpu/kinfu_large_scale/src/internal.h [new file with mode: 0644]
gpu/kinfu_large_scale/src/kinfu.cpp [new file with mode: 0644]
gpu/kinfu_large_scale/src/marching_cubes.cpp [new file with mode: 0644]
gpu/kinfu_large_scale/src/raycaster.cpp [new file with mode: 0644]
gpu/kinfu_large_scale/src/screenshot_manager.cpp [new file with mode: 0644]
gpu/kinfu_large_scale/src/standalone_marching_cubes.cpp [new file with mode: 0644]
gpu/kinfu_large_scale/src/tsdf_volume.cpp [new file with mode: 0644]
gpu/kinfu_large_scale/src/world_model.cpp [new file with mode: 0644]
gpu/kinfu_large_scale/test/CMakeLists.txt [new file with mode: 0644]
gpu/kinfu_large_scale/tools/CMakeLists.txt [new file with mode: 0644]
gpu/kinfu_large_scale/tools/capture.cpp [new file with mode: 0644]
gpu/kinfu_large_scale/tools/color_handler.h [new file with mode: 0644]
gpu/kinfu_large_scale/tools/evaluation.cpp [new file with mode: 0644]
gpu/kinfu_large_scale/tools/evaluation.h [new file with mode: 0644]
gpu/kinfu_large_scale/tools/kinfuLS_app.cpp [new file with mode: 0644]
gpu/kinfu_large_scale/tools/kinfu_app_sim.cpp [new file with mode: 0644]
gpu/kinfu_large_scale/tools/openni_capture.h [new file with mode: 0644]
gpu/kinfu_large_scale/tools/process_kinfu_large_scale_output.cpp [new file with mode: 0644]
gpu/kinfu_large_scale/tools/record_maps_rgb.cpp [new file with mode: 0644]
gpu/kinfu_large_scale/tools/record_tsdfvolume.cpp [new file with mode: 0644]
gpu/kinfu_large_scale/tools/standalone_texture_mapping.cpp [new file with mode: 0644]
gpu/octree/CMakeLists.txt [new file with mode: 0644]
gpu/octree/include/pcl/gpu/octree/device_format.hpp [new file with mode: 0644]
gpu/octree/include/pcl/gpu/octree/octree.hpp [new file with mode: 0644]
gpu/octree/src/cuda/approx_nsearch.cu [new file with mode: 0644]
gpu/octree/src/cuda/bfrs.cu [new file with mode: 0644]
gpu/octree/src/cuda/knn_search.cu [new file with mode: 0644]
gpu/octree/src/cuda/octree_builder.cu [new file with mode: 0644]
gpu/octree/src/cuda/octree_host.cu [new file with mode: 0644]
gpu/octree/src/cuda/octree_iterator.hpp [new file with mode: 0644]
gpu/octree/src/cuda/radius_search.cu [new file with mode: 0644]
gpu/octree/src/internal.hpp [new file with mode: 0644]
gpu/octree/src/octree.cpp [new file with mode: 0644]
gpu/octree/src/utils/bitonic_sort.hpp [new file with mode: 0644]
gpu/octree/src/utils/boxutils.hpp [new file with mode: 0644]
gpu/octree/src/utils/copygen.hpp [new file with mode: 0644]
gpu/octree/src/utils/emulation.hpp [new file with mode: 0644]
gpu/octree/src/utils/morton.hpp [new file with mode: 0644]
gpu/octree/src/utils/priority_octree_iterator.hpp [new file with mode: 0644]
gpu/octree/src/utils/scan_block.hpp [new file with mode: 0644]
gpu/octree/src/utils/warp_reduce.hpp [new file with mode: 0644]
gpu/octree/test/CMakeLists.txt [new file with mode: 0644]
gpu/octree/test/data_source.hpp [new file with mode: 0644]
gpu/octree/test/perfomance.cpp [new file with mode: 0644]
gpu/octree/test/test_approx_nearest.cpp [new file with mode: 0644]
gpu/octree/test/test_bfrs_gpu.cpp [new file with mode: 0644]
gpu/octree/test/test_host_radius_search.cpp [new file with mode: 0644]
gpu/octree/test/test_knn_search.cpp [new file with mode: 0644]
gpu/octree/test/test_radius_search.cpp [new file with mode: 0644]
gpu/people/CMakeLists.txt [new file with mode: 0644]
gpu/people/data/results/README [new file with mode: 0644]
gpu/people/include/pcl/gpu/people/bodyparts_detector.h [new file with mode: 0644]
gpu/people/include/pcl/gpu/people/colormap.h [new file with mode: 0644]
gpu/people/include/pcl/gpu/people/face_detector.h [new file with mode: 0644]
gpu/people/include/pcl/gpu/people/label_blob2.h [new file with mode: 0644]
gpu/people/include/pcl/gpu/people/label_common.h [new file with mode: 0644]
gpu/people/include/pcl/gpu/people/label_segment.h [new file with mode: 0644]
gpu/people/include/pcl/gpu/people/label_tree.h [new file with mode: 0644]
gpu/people/include/pcl/gpu/people/organized_plane_detector.h [new file with mode: 0644]
gpu/people/include/pcl/gpu/people/people_detector.h [new file with mode: 0644]
gpu/people/include/pcl/gpu/people/person_attribs.h [new file with mode: 0644]
gpu/people/include/pcl/gpu/people/probability_processor.h [new file with mode: 0644]
gpu/people/include/pcl/gpu/people/tree.h [new file with mode: 0644]
gpu/people/include/pcl/gpu/people/tree_train.h [new file with mode: 0644]
gpu/people/src/bodyparts_detector.cpp [new file with mode: 0644]
gpu/people/src/colormap.cpp [new file with mode: 0644]
gpu/people/src/cuda/device.h [new file with mode: 0644]
gpu/people/src/cuda/elec.cu [new file with mode: 0644]
gpu/people/src/cuda/multi_tree.cu [new file with mode: 0644]
gpu/people/src/cuda/nvidia/NCV.cu [new file with mode: 0644]
gpu/people/src/cuda/nvidia/NCV.hpp [new file with mode: 0644]
gpu/people/src/cuda/nvidia/NCVAlg.hpp [new file with mode: 0644]
gpu/people/src/cuda/nvidia/NCVColorConversion.hpp [new file with mode: 0644]
gpu/people/src/cuda/nvidia/NCVHaarObjectDetection.cu [new file with mode: 0644]
gpu/people/src/cuda/nvidia/NCVHaarObjectDetection.hpp [new file with mode: 0644]
gpu/people/src/cuda/nvidia/NCVPixelOperations.hpp [new file with mode: 0644]
gpu/people/src/cuda/nvidia/NCVPyramid.cu [new file with mode: 0644]
gpu/people/src/cuda/nvidia/NCVPyramid.hpp [new file with mode: 0644]
gpu/people/src/cuda/nvidia/NCVRuntimeTemplates.hpp [new file with mode: 0644]
gpu/people/src/cuda/nvidia/NPP_staging.cu [new file with mode: 0644]
gpu/people/src/cuda/nvidia/NPP_staging.hpp [new file with mode: 0644]
gpu/people/src/cuda/prob.cu [new file with mode: 0644]
gpu/people/src/cuda/shs.cu [new file with mode: 0644]
gpu/people/src/cuda/smooth.cu [new file with mode: 0644]
gpu/people/src/cuda/utils.cu [new file with mode: 0644]
gpu/people/src/cuda_async_copy.h [new file with mode: 0644]
gpu/people/src/face_detector.cpp [new file with mode: 0644]
gpu/people/src/internal.h [new file with mode: 0644]
gpu/people/src/organized_plane_detector.cpp [new file with mode: 0644]
gpu/people/src/people_detector.cpp [new file with mode: 0644]
gpu/people/src/person_attibs.cpp [new file with mode: 0644]
gpu/people/src/probability_processor.cpp [new file with mode: 0644]
gpu/people/src/trees.cpp [new file with mode: 0644]
gpu/people/tools/CMakeLists.txt [new file with mode: 0644]
gpu/people/tools/generic.xml [new file with mode: 0644]
gpu/people/tools/people_app.cpp [new file with mode: 0644]
gpu/people/tools/people_pcd_prob.cpp [new file with mode: 0644]
gpu/people/tools/people_tracking.cpp [new file with mode: 0644]
gpu/people/tools/run_pcd_prob.sh [new file with mode: 0755]
gpu/people/tools/run_people_app.sh [new file with mode: 0755]
gpu/people/tools/test.pcd [new file with mode: 0644]
gpu/segmentation/CMakeLists.txt [new file with mode: 0644]
gpu/segmentation/include/pcl/gpu/segmentation/gpu_extract_clusters.h [new file with mode: 0644]
gpu/segmentation/include/pcl/gpu/segmentation/gpu_extract_labeled_clusters.h [new file with mode: 0644]
gpu/segmentation/include/pcl/gpu/segmentation/gpu_seeded_hue_segmentation.h [new file with mode: 0644]
gpu/segmentation/include/pcl/gpu/segmentation/impl/gpu_extract_clusters.hpp [new file with mode: 0644]
gpu/segmentation/include/pcl/gpu/segmentation/impl/gpu_extract_labeled_clusters.hpp [new file with mode: 0644]
gpu/segmentation/include/pcl/gpu/segmentation/impl/gpu_seeded_hue_segmentation.hpp [new file with mode: 0644]
gpu/segmentation/src/extract_clusters.cpp [new file with mode: 0644]
gpu/surface/CMakeLists.txt [new file with mode: 0644]
gpu/surface/include/pcl/gpu/surface/convex_hull.h [new file with mode: 0644]
gpu/surface/src/convex_hull.cpp [new file with mode: 0644]
gpu/surface/src/cuda/convex_hull.cu [new file with mode: 0644]
gpu/surface/src/cuda/device.h [new file with mode: 0644]
gpu/surface/src/internal.h [new file with mode: 0644]
gpu/surface/test/CMakeLists.txt [new file with mode: 0644]
gpu/surface/test/test_pseudo_convex_hull.cpp [new file with mode: 0644]
gpu/tracking/CMakeLists.txt [new file with mode: 0644]
gpu/tracking/include/pcl/gpu/tracking/particle_filter.h [new file with mode: 0644]
gpu/tracking/src/cuda/device.hpp [new file with mode: 0644]
gpu/tracking/src/cuda/particle_filter.cu [new file with mode: 0644]
gpu/tracking/src/internal.h [new file with mode: 0644]
gpu/utils/CMakeLists.txt [new file with mode: 0644]
gpu/utils/include/pcl/gpu/utils/device/algorithm.hpp [new file with mode: 0644]
gpu/utils/include/pcl/gpu/utils/device/asm.hpp [new file with mode: 0644]
gpu/utils/include/pcl/gpu/utils/device/block.hpp [new file with mode: 0644]
gpu/utils/include/pcl/gpu/utils/device/cache.hpp [new file with mode: 0644]
gpu/utils/include/pcl/gpu/utils/device/cutil_math.h [new file with mode: 0644]
gpu/utils/include/pcl/gpu/utils/device/emulation.hpp [new file with mode: 0644]
gpu/utils/include/pcl/gpu/utils/device/funcattrib.hpp [new file with mode: 0644]
gpu/utils/include/pcl/gpu/utils/device/functional.hpp [new file with mode: 0644]
gpu/utils/include/pcl/gpu/utils/device/limits.hpp [new file with mode: 0644]
gpu/utils/include/pcl/gpu/utils/device/reduce.hpp [new file with mode: 0644]
gpu/utils/include/pcl/gpu/utils/device/static_check.hpp [new file with mode: 0644]
gpu/utils/include/pcl/gpu/utils/device/vector_math.hpp [new file with mode: 0644]
gpu/utils/include/pcl/gpu/utils/device/warp.hpp [new file with mode: 0644]
gpu/utils/include/pcl/gpu/utils/repacks.hpp [new file with mode: 0644]
gpu/utils/include/pcl/gpu/utils/safe_call.hpp [new file with mode: 0644]
gpu/utils/include/pcl/gpu/utils/texture_binder.hpp [new file with mode: 0644]
gpu/utils/include/pcl/gpu/utils/timers_cuda.hpp [new file with mode: 0644]
gpu/utils/src/internal.hpp [new file with mode: 0644]
gpu/utils/src/repacks.cpp [new file with mode: 0644]
gpu/utils/src/repacks.cu [new file with mode: 0644]
io/CMakeLists.txt
io/include/pcl/io/auto_io.h [new file with mode: 0644]
io/include/pcl/io/boost.h
io/include/pcl/io/buffers.h [new file with mode: 0644]
io/include/pcl/io/davidsdk_grabber.h [new file with mode: 0644]
io/include/pcl/io/depth_sense/depth_sense_device_manager.h [new file with mode: 0644]
io/include/pcl/io/depth_sense/depth_sense_grabber_impl.h [new file with mode: 0644]
io/include/pcl/io/depth_sense_grabber.h [new file with mode: 0644]
io/include/pcl/io/ensenso_grabber.h [new file with mode: 0644]
io/include/pcl/io/file_io.h
io/include/pcl/io/hdl_grabber.h
io/include/pcl/io/image.h
io/include/pcl/io/image_depth.h
io/include/pcl/io/impl/auto_io.hpp [new file with mode: 0644]
io/include/pcl/io/impl/buffers.hpp [new file with mode: 0644]
io/include/pcl/io/impl/lzf_image_io.hpp
io/include/pcl/io/impl/point_cloud_image_extractors.hpp
io/include/pcl/io/openni_camera/openni_image.h
io/include/pcl/io/pcd_grabber.h
io/include/pcl/io/ply/ply.h
io/include/pcl/io/ply/ply_parser.h
io/include/pcl/io/point_cloud_image_extractors.h
io/include/pcl/io/pxc_grabber.h
io/include/pcl/io/real_sense/real_sense_device_manager.h [new file with mode: 0644]
io/include/pcl/io/real_sense_grabber.h [new file with mode: 0644]
io/include/pcl/io/robot_eye_grabber.h
io/include/pcl/io/vlp_grabber.h [new file with mode: 0644]
io/include/pcl/io/vtk_lib_io.h
io/io.doxy
io/src/auto_io.cpp [new file with mode: 0644]
io/src/davidsdk_grabber.cpp [new file with mode: 0644]
io/src/debayer.cpp
io/src/depth_sense/depth_sense_device_manager.cpp [new file with mode: 0644]
io/src/depth_sense/depth_sense_grabber_impl.cpp [new file with mode: 0644]
io/src/depth_sense_grabber.cpp [new file with mode: 0644]
io/src/ensenso_grabber.cpp [new file with mode: 0644]
io/src/file_io.cpp
io/src/hdl_grabber.cpp
io/src/image_yuv422.cpp
io/src/obj_io.cpp
io/src/openni2/openni2_device.cpp
io/src/openni2/openni2_device_manager.cpp
io/src/openni2_grabber.cpp
io/src/openni_camera/openni_device.cpp
io/src/openni_camera/openni_driver.cpp
io/src/openni_grabber.cpp
io/src/pcd_grabber.cpp
io/src/pcd_io.cpp
io/src/ply/ply_parser.cpp
io/src/ply_io.cpp
io/src/pxc_grabber.cpp [deleted file]
io/src/real_sense/real_sense_device_manager.cpp [new file with mode: 0644]
io/src/real_sense_grabber.cpp [new file with mode: 0644]
io/src/robot_eye_grabber.cpp
io/src/vlp_grabber.cpp [new file with mode: 0644]
io/src/vtk_lib_io.cpp
io/tools/CMakeLists.txt
io/tools/converter.cpp [new file with mode: 0644]
io/tools/pcd_introduce_nan.cpp [new file with mode: 0644]
keypoints/CMakeLists.txt
keypoints/include/pcl/keypoints/brisk_2d.h [new file with mode: 0644]
keypoints/include/pcl/keypoints/impl/brisk_2d.hpp [new file with mode: 0644]
keypoints/include/pcl/keypoints/impl/harris_2d.hpp
keypoints/include/pcl/keypoints/impl/iss_3d.hpp
keypoints/include/pcl/keypoints/impl/sift_keypoint.hpp
keypoints/include/pcl/keypoints/impl/trajkovic_2d.hpp
keypoints/include/pcl/keypoints/impl/trajkovic_3d.hpp
keypoints/include/pcl/keypoints/impl/uniform_sampling.hpp [deleted file]
keypoints/include/pcl/keypoints/trajkovic_3d.h
keypoints/include/pcl/keypoints/uniform_sampling.h
keypoints/src/agast_2d.cpp
keypoints/src/brisk_2d.cpp [new file with mode: 0644]
keypoints/src/narf_keypoint.cpp
keypoints/src/uniform_sampling.cpp [deleted file]
ml/CMakeLists.txt [new file with mode: 0644]
ml/include/pcl/ml/branch_estimator.h [new file with mode: 0644]
ml/include/pcl/ml/densecrf.h [new file with mode: 0644]
ml/include/pcl/ml/dt/decision_forest.h [new file with mode: 0644]
ml/include/pcl/ml/dt/decision_forest_evaluator.h [new file with mode: 0644]
ml/include/pcl/ml/dt/decision_forest_trainer.h [new file with mode: 0644]
ml/include/pcl/ml/dt/decision_tree.h [new file with mode: 0644]
ml/include/pcl/ml/dt/decision_tree_data_provider.h [new file with mode: 0644]
ml/include/pcl/ml/dt/decision_tree_evaluator.h [new file with mode: 0644]
ml/include/pcl/ml/dt/decision_tree_trainer.h [new file with mode: 0644]
ml/include/pcl/ml/feature_handler.h [new file with mode: 0644]
ml/include/pcl/ml/ferns/fern.h [new file with mode: 0644]
ml/include/pcl/ml/ferns/fern_evaluator.h [new file with mode: 0644]
ml/include/pcl/ml/ferns/fern_trainer.h [new file with mode: 0644]
ml/include/pcl/ml/impl/dt/decision_forest_evaluator.hpp [new file with mode: 0644]
ml/include/pcl/ml/impl/dt/decision_forest_trainer.hpp [new file with mode: 0644]
ml/include/pcl/ml/impl/dt/decision_tree_evaluator.hpp [new file with mode: 0644]
ml/include/pcl/ml/impl/dt/decision_tree_trainer.hpp [new file with mode: 0644]
ml/include/pcl/ml/impl/ferns/fern_evaluator.hpp [new file with mode: 0644]
ml/include/pcl/ml/impl/ferns/fern_trainer.hpp [new file with mode: 0644]
ml/include/pcl/ml/impl/kmeans.hpp [new file with mode: 0644]
ml/include/pcl/ml/impl/svm/svm_wrapper.hpp [new file with mode: 0755]
ml/include/pcl/ml/kmeans.h [new file with mode: 0644]
ml/include/pcl/ml/multi_channel_2d_comparison_feature.h [new file with mode: 0644]
ml/include/pcl/ml/multi_channel_2d_comparison_feature_handler.h [new file with mode: 0644]
ml/include/pcl/ml/multi_channel_2d_data_set.h [new file with mode: 0644]
ml/include/pcl/ml/multiple_data_2d_example_index.h [new file with mode: 0644]
ml/include/pcl/ml/pairwise_potential.h [new file with mode: 0644]
ml/include/pcl/ml/permutohedral.h [new file with mode: 0644]
ml/include/pcl/ml/point_xy_32f.h [new file with mode: 0644]
ml/include/pcl/ml/point_xy_32i.h [new file with mode: 0644]
ml/include/pcl/ml/regression_variance_stats_estimator.h [new file with mode: 0644]
ml/include/pcl/ml/stats_estimator.h [new file with mode: 0644]
ml/include/pcl/ml/svm.h [new file with mode: 0755]
ml/include/pcl/ml/svm_wrapper.h [new file with mode: 0755]
ml/src/densecrf.cpp [new file with mode: 0644]
ml/src/kmeans.cpp [new file with mode: 0644]
ml/src/pairwise_potential.cpp [new file with mode: 0644]
ml/src/permutohedral.cpp [new file with mode: 0644]
ml/src/point_xy_32f.cpp [new file with mode: 0644]
ml/src/point_xy_32i.cpp [new file with mode: 0644]
ml/src/svm.cpp [new file with mode: 0755]
ml/src/svm_wrapper.cpp [new file with mode: 0755]
octree/include/pcl/octree/octree_iterator.h
octree/include/pcl/octree/octree_pointcloud.h
octree/include/pcl/octree/octree_pointcloud_adjacency.h
octree/include/pcl/octree/octree_pointcloud_adjacency_container.h
octree/include/pcl/octree/octree_pointcloud_occupancy.h
octree/include/pcl/octree/octree_search.h
outofcore/include/pcl/outofcore/impl/octree_base_node.hpp
outofcore/include/pcl/outofcore/octree_base.h
outofcore/src/visualization/object.cpp
outofcore/src/visualization/outofcore_cloud.cpp
pcl_config.h.in
people/CMakeLists.txt
people/include/pcl/people/ground_based_people_detection_app.h
people/src/hog.cpp
recognition/CMakeLists.txt
recognition/include/pcl/recognition/cg/hough_3d.h
recognition/include/pcl/recognition/face_detection/face_common.h [new file with mode: 0644]
recognition/include/pcl/recognition/face_detection/face_detector_data_provider.h [new file with mode: 0644]
recognition/include/pcl/recognition/face_detection/rf_face_detector_trainer.h [new file with mode: 0644]
recognition/include/pcl/recognition/face_detection/rf_face_utils.h [new file with mode: 0644]
recognition/include/pcl/recognition/hv/hv_go.h
recognition/include/pcl/recognition/impl/cg/hough_3d.hpp
recognition/include/pcl/recognition/impl/implicit_shape_model.hpp
recognition/include/pcl/recognition/impl/linemod/line_rgbd.hpp
recognition/include/pcl/recognition/implicit_shape_model.h
recognition/src/face_detection/face_detector_data_provider.cpp [new file with mode: 0644]
recognition/src/face_detection/rf_face_detector_trainer.cpp [new file with mode: 0644]
recognition/src/linemod.cpp
registration/CMakeLists.txt
registration/include/pcl/registration/correspondence_estimation_backprojection.h
registration/include/pcl/registration/correspondence_estimation_normal_shooting.h
registration/include/pcl/registration/correspondence_rejection.h
registration/include/pcl/registration/exceptions.h
registration/include/pcl/registration/gicp.h
registration/include/pcl/registration/gicp6d.h
registration/include/pcl/registration/ia_fpcs.h [new file with mode: 0644]
registration/include/pcl/registration/ia_kfpcs.h [new file with mode: 0644]
registration/include/pcl/registration/icp.h
registration/include/pcl/registration/impl/gicp.hpp
registration/include/pcl/registration/impl/ia_fpcs.hpp [new file with mode: 0644]
registration/include/pcl/registration/impl/ia_kfpcs.hpp [new file with mode: 0644]
registration/include/pcl/registration/impl/incremental_registration.hpp [new file with mode: 0644]
registration/include/pcl/registration/impl/lum.hpp
registration/include/pcl/registration/impl/meta_registration.hpp [new file with mode: 0644]
registration/include/pcl/registration/impl/ppf_registration.hpp
registration/include/pcl/registration/impl/sample_consensus_prerejective.hpp
registration/include/pcl/registration/impl/transformation_estimation_3point.hpp [new file with mode: 0644]
registration/include/pcl/registration/incremental_registration.h [new file with mode: 0644]
registration/include/pcl/registration/matching_candidate.h [new file with mode: 0644]
registration/include/pcl/registration/meta_registration.h [new file with mode: 0644]
registration/include/pcl/registration/registration.h
registration/include/pcl/registration/transformation_estimation_3point.h [new file with mode: 0644]
registration/src/correspondence_rejection_surface_normal.cpp
registration/src/gicp6d.cpp
registration/src/ppf_registration.cpp
sample_consensus/CMakeLists.txt
sample_consensus/include/pcl/sample_consensus/impl/sac_model_circle.hpp
sample_consensus/include/pcl/sample_consensus/impl/sac_model_circle3d.hpp
sample_consensus/include/pcl/sample_consensus/impl/sac_model_cone.hpp
sample_consensus/include/pcl/sample_consensus/impl/sac_model_cylinder.hpp
sample_consensus/include/pcl/sample_consensus/impl/sac_model_normal_parallel_plane.hpp
sample_consensus/include/pcl/sample_consensus/impl/sac_model_normal_sphere.hpp
sample_consensus/include/pcl/sample_consensus/impl/sac_model_parallel_line.hpp
sample_consensus/include/pcl/sample_consensus/impl/sac_model_parallel_plane.hpp
sample_consensus/include/pcl/sample_consensus/impl/sac_model_perpendicular_plane.hpp
sample_consensus/include/pcl/sample_consensus/model_types.h
sample_consensus/include/pcl/sample_consensus/sac_model.h
sample_consensus/include/pcl/sample_consensus/sac_model_circle.h
sample_consensus/include/pcl/sample_consensus/sac_model_circle3d.h
sample_consensus/include/pcl/sample_consensus/sac_model_cone.h
sample_consensus/include/pcl/sample_consensus/sac_model_cylinder.h
sample_consensus/include/pcl/sample_consensus/sac_model_line.h
sample_consensus/include/pcl/sample_consensus/sac_model_normal_parallel_plane.h
sample_consensus/include/pcl/sample_consensus/sac_model_normal_plane.h
sample_consensus/include/pcl/sample_consensus/sac_model_normal_sphere.h
sample_consensus/include/pcl/sample_consensus/sac_model_parallel_line.h
sample_consensus/include/pcl/sample_consensus/sac_model_parallel_plane.h
sample_consensus/include/pcl/sample_consensus/sac_model_perpendicular_plane.h
sample_consensus/include/pcl/sample_consensus/sac_model_plane.h
sample_consensus/include/pcl/sample_consensus/sac_model_registration.h
sample_consensus/include/pcl/sample_consensus/sac_model_registration_2d.h
sample_consensus/include/pcl/sample_consensus/sac_model_sphere.h
sample_consensus/include/pcl/sample_consensus/sac_model_stick.h
sample_consensus/src/sac_model_line.cpp
sample_consensus/src/sac_model_parallel_line.cpp [new file with mode: 0644]
search/include/pcl/search/impl/organized.hpp
search/include/pcl/search/organized.h
segmentation/CMakeLists.txt
segmentation/include/pcl/segmentation/boost.h
segmentation/include/pcl/segmentation/conditional_euclidean_clustering.h
segmentation/include/pcl/segmentation/cpc_segmentation.h [new file with mode: 0644]
segmentation/include/pcl/segmentation/crf_segmentation.h [new file with mode: 0644]
segmentation/include/pcl/segmentation/grabcut_segmentation.h
segmentation/include/pcl/segmentation/impl/approximate_progressive_morphological_filter.hpp
segmentation/include/pcl/segmentation/impl/cpc_segmentation.hpp [new file with mode: 0644]
segmentation/include/pcl/segmentation/impl/crf_segmentation.hpp [new file with mode: 0644]
segmentation/include/pcl/segmentation/impl/extract_polygonal_prism_data.hpp
segmentation/include/pcl/segmentation/impl/grabcut_segmentation.hpp
segmentation/include/pcl/segmentation/impl/lccp_segmentation.hpp [new file with mode: 0644]
segmentation/include/pcl/segmentation/impl/organized_connected_component_segmentation.hpp
segmentation/include/pcl/segmentation/impl/organized_multi_plane_segmentation.hpp
segmentation/include/pcl/segmentation/impl/random_walker.hpp [new file with mode: 0644]
segmentation/include/pcl/segmentation/impl/region_growing.hpp
segmentation/include/pcl/segmentation/impl/supervoxel_clustering.hpp
segmentation/include/pcl/segmentation/impl/unary_classifier.hpp [new file with mode: 0644]
segmentation/include/pcl/segmentation/lccp_segmentation.h [new file with mode: 0644]
segmentation/include/pcl/segmentation/organized_connected_component_segmentation.h
segmentation/include/pcl/segmentation/random_walker.h [new file with mode: 0644]
segmentation/include/pcl/segmentation/sac_segmentation.h
segmentation/include/pcl/segmentation/supervoxel_clustering.h
segmentation/include/pcl/segmentation/unary_classifier.h [new file with mode: 0644]
segmentation/src/cpc_segmentation.cpp [new file with mode: 0644]
segmentation/src/crf_segmentation.cpp [new file with mode: 0644]
segmentation/src/grabcut_segmentation.cpp
segmentation/src/lccp_segmentation.cpp [new file with mode: 0644]
segmentation/src/supervoxel_clustering.cpp
segmentation/src/unary_classifier.cpp [new file with mode: 0644]
simulation/CMakeLists.txt [new file with mode: 0644]
simulation/include/pcl/simulation/camera.h [new file with mode: 0644]
simulation/include/pcl/simulation/glsl_shader.h [new file with mode: 0644]
simulation/include/pcl/simulation/model.h [new file with mode: 0644]
simulation/include/pcl/simulation/range_likelihood.h [new file with mode: 0644]
simulation/include/pcl/simulation/scene.h [new file with mode: 0644]
simulation/include/pcl/simulation/sum_reduce.h [new file with mode: 0644]
simulation/src/camera.cpp [new file with mode: 0644]
simulation/src/compute_score.frag [new file with mode: 0644]
simulation/src/compute_score.vert [new file with mode: 0644]
simulation/src/glsl_shader.cpp [new file with mode: 0644]
simulation/src/model.cpp [new file with mode: 0644]
simulation/src/range_likelihood.cpp [new file with mode: 0644]
simulation/src/scene.cpp [new file with mode: 0644]
simulation/src/shader.frag [new file with mode: 0644]
simulation/src/shader.vert [new file with mode: 0644]
simulation/src/single_texture.frag [new file with mode: 0644]
simulation/src/single_texture.vert [new file with mode: 0644]
simulation/src/sum_reduce.cpp [new file with mode: 0644]
simulation/src/sum_score.frag [new file with mode: 0644]
simulation/src/sum_score.vert [new file with mode: 0644]
simulation/tools/CMakeLists.txt [new file with mode: 0644]
simulation/tools/README_about_tools [new file with mode: 0644]
simulation/tools/sim_terminal_demo.cpp [new file with mode: 0644]
simulation/tools/sim_test_performance.cpp [new file with mode: 0644]
simulation/tools/sim_test_simple.cpp [new file with mode: 0644]
simulation/tools/sim_viewer.cpp [new file with mode: 0644]
simulation/tools/simulation_io.cpp [new file with mode: 0644]
simulation/tools/simulation_io.hpp [new file with mode: 0644]
stereo/CMakeLists.txt [new file with mode: 0644]
stereo/include/pcl/stereo/digital_elevation_map.h [new file with mode: 0644]
stereo/include/pcl/stereo/disparity_map_converter.h [new file with mode: 0644]
stereo/include/pcl/stereo/impl/disparity_map_converter.hpp [new file with mode: 0644]
stereo/include/pcl/stereo/stereo_grabber.h [new file with mode: 0644]
stereo/include/pcl/stereo/stereo_matching.h [new file with mode: 0644]
stereo/src/digital_elevation_map.cpp [new file with mode: 0644]
stereo/src/disparity_map_converter.cpp [new file with mode: 0644]
stereo/src/stereo_adaptive_cost_so.cpp [new file with mode: 0644]
stereo/src/stereo_block_based.cpp [new file with mode: 0644]
stereo/src/stereo_grabber.cpp [new file with mode: 0644]
stereo/src/stereo_matching.cpp [new file with mode: 0644]
surface/CMakeLists.txt
surface/include/pcl/surface/3rdparty/opennurbs/opennurbs_defines.h
surface/include/pcl/surface/3rdparty/opennurbs/opennurbs_extensions.h
surface/include/pcl/surface/3rdparty/opennurbs/opennurbs_string.h
surface/include/pcl/surface/3rdparty/opennurbs/opennurbs_unicode.h
surface/include/pcl/surface/3rdparty/poisson4/hash.h
surface/include/pcl/surface/concave_hull.h
surface/include/pcl/surface/convex_hull.h
surface/include/pcl/surface/gp3.h
surface/include/pcl/surface/impl/concave_hull.hpp
surface/include/pcl/surface/impl/convex_hull.hpp
surface/include/pcl/surface/impl/gp3.hpp
surface/include/pcl/surface/impl/marching_cubes.hpp
surface/include/pcl/surface/impl/marching_cubes_rbf.hpp
surface/include/pcl/surface/impl/mls.hpp
surface/include/pcl/surface/impl/texture_mapping.hpp
surface/include/pcl/surface/organized_fast_mesh.h
surface/include/pcl/surface/texture_mapping.h
surface/src/3rdparty/opennurbs/opennurbs_archive.cpp
surface/src/mls.cpp
surface/src/on_nurbs/fitting_curve_2d_apdm.cpp
surface/src/on_nurbs/fitting_curve_2d_pdm.cpp
surface/src/on_nurbs/fitting_curve_pdm.cpp
surface/src/on_nurbs/fitting_cylinder_pdm.cpp
surface/src/on_nurbs/fitting_sphere_pdm.cpp
surface/src/on_nurbs/sparse_mat.cpp
surface/src/texture_mapping.cpp
surface/src/vtk_smoothing/vtk_mesh_smoothing_laplacian.cpp
surface/src/vtk_smoothing/vtk_utils.cpp
test/2d/CMakeLists.txt [new file with mode: 0644]
test/2d/canny.pcd [new file with mode: 0644]
test/2d/closing.pcd [new file with mode: 0644]
test/2d/closing_binary.pcd [new file with mode: 0644]
test/2d/dilation.pcd [new file with mode: 0644]
test/2d/dilation_binary.pcd [new file with mode: 0644]
test/2d/erosion.pcd [new file with mode: 0644]
test/2d/erosion_binary.pcd [new file with mode: 0644]
test/2d/gauss_smooth.pcd [new file with mode: 0644]
test/2d/gauss_smooth.png [new file with mode: 0644]
test/2d/lena-grayscale.png [new file with mode: 0644]
test/2d/lena.pcd [new file with mode: 0644]
test/2d/opening.pcd [new file with mode: 0644]
test/2d/opening_binary.pcd [new file with mode: 0644]
test/2d/test_2d.cpp [new file with mode: 0644]
test/CMakeLists.txt
test/brisk_descriptors_gt.pcd [new file with mode: 0644]
test/colored_cloud.pcd
test/common/CMakeLists.txt
test/common/test_bearing_angle_image.cpp [new file with mode: 0644]
test/common/test_common.cpp
test/common/test_copy_make_borders.cpp
test/common/test_geometry.cpp [new file with mode: 0644]
test/common/test_io.cpp
test/common/test_vector_average.cpp
test/features/CMakeLists.txt
test/features/test_brisk.cpp [new file with mode: 0644]
test/features/test_grsd_estimation.cpp [new file with mode: 0644]
test/features/test_ptr.cpp
test/features/test_rsd_estimation.cpp [new file with mode: 0644]
test/features/test_shot_estimation.cpp
test/filters/test_filters.cpp
test/five_people.pcd
test/geometry/test_mesh_indices.cpp
test/geometry/test_quad_mesh.cpp
test/io/CMakeLists.txt
test/io/test_buffers.cpp [new file with mode: 0644]
test/io/test_io.cpp
test/io/test_point_cloud_image_extractors.cpp
test/keypoints/test_keypoints.cpp
test/milk_cartoon_all_small_clorox.pcd
test/milk_color.pcd
test/office1_keypoints.pcd [new file with mode: 0644]
test/office2_keypoints.pcd [new file with mode: 0644]
test/registration/CMakeLists.txt
test/registration/test_fpcs_ia.cpp [new file with mode: 0644]
test/registration/test_fpcs_ia_data.h [new file with mode: 0644]
test/registration/test_kfpcs_ia.cpp [new file with mode: 0644]
test/registration/test_kfpcs_ia_data.h [new file with mode: 0644]
test/registration/test_registration.cpp
test/sample_consensus/CMakeLists.txt
test/sample_consensus/test_sample_consensus_line_model.cpp [deleted file]
test/sample_consensus/test_sample_consensus_line_models.cpp [new file with mode: 0644]
test/segmentation/CMakeLists.txt [new file with mode: 0644]
test/segmentation/data/graph0.info [new file with mode: 0644]
test/segmentation/data/graph1.info [new file with mode: 0644]
test/segmentation/data/graph2.info [new file with mode: 0644]
test/segmentation/data/graph3.info [new file with mode: 0644]
test/segmentation/data/graph4.info [new file with mode: 0644]
test/segmentation/data/graph5.info [new file with mode: 0644]
test/segmentation/data/graph6.info [new file with mode: 0644]
test/segmentation/data/graph7.info [new file with mode: 0644]
test/segmentation/data/graph8.info [new file with mode: 0644]
test/segmentation/test_random_walker.cpp [new file with mode: 0644]
test/table_scene_mug_stereo_textured.pcd
test/test_bearing_angle_image.cpp [deleted file]
test/test_recognition_cg.cpp
test/test_transforms.cpp
tools/CMakeLists.txt
tools/boost.h
tools/compute_hull.cpp
tools/crf_segmentation.cpp [new file with mode: 0644]
tools/icp.cpp
tools/lum.cpp
tools/mesh_sampling.cpp
tools/obj2ply.cpp [new file with mode: 0644]
tools/pcd2png.cpp
tools/train_unary_classifier.cpp [new file with mode: 0644]
tools/transform_point_cloud.cpp
tools/unary_classifier_segment.cpp [new file with mode: 0644]
tools/uniform_sampling.cpp
tools/voxel_grid_occlusion_estimation.cpp
tracking/include/pcl/tracking/impl/kld_adaptive_particle_filter.hpp
tracking/include/pcl/tracking/impl/pyramidal_klt.hpp
visualization/CMakeLists.txt
visualization/include/pcl/visualization/boost.h
visualization/include/pcl/visualization/common/common.h
visualization/include/pcl/visualization/impl/image_viewer.hpp
visualization/include/pcl/visualization/impl/pcl_visualizer.hpp
visualization/include/pcl/visualization/impl/point_cloud_color_handlers.hpp
visualization/include/pcl/visualization/interactor_style.h
visualization/include/pcl/visualization/pcl_plotter.h
visualization/include/pcl/visualization/pcl_visualizer.h
visualization/include/pcl/visualization/point_cloud_color_handlers.h
visualization/include/pcl/visualization/vtk.h
visualization/include/pcl/visualization/vtk/pcl_context_item.h
visualization/include/pcl/visualization/vtk/vtkRenderWindowInteractorFix.mm
visualization/src/common/common.cpp
visualization/src/image_viewer.cpp
visualization/src/interactor_style.cpp
visualization/src/pcl_plotter.cpp
visualization/src/pcl_visualizer.cpp
visualization/src/point_cloud_handlers.cpp
visualization/src/vtk/pcl_context_item.cpp
visualization/tools/CMakeLists.txt
visualization/tools/davidsdk_viewer.cpp [new file with mode: 0644]
visualization/tools/depth_sense_viewer.cpp [new file with mode: 0644]
visualization/tools/ensenso_viewer.cpp [new file with mode: 0644]
visualization/tools/image_grabber_viewer.cpp
visualization/tools/image_viewer.cpp
visualization/tools/pcd_grabber_viewer.cpp
visualization/tools/pcd_viewer.cpp
visualization/tools/real_sense_viewer.cpp [new file with mode: 0644]
visualization/tools/vlp_viewer.cpp [new file with mode: 0644]